home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strncmp.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  446b  |  39 lines

  1.  
  2. /*
  3.  *  STRNCMP.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <string.h>
  9.  
  10. typedef unsigned char ubyte;
  11.  
  12. int
  13. strncmp(s, d, n)
  14. const char *s;
  15. const char *d;
  16. int n;
  17. {
  18.     char c;
  19.  
  20.     n;    /*  gets n into a register */
  21.     n;
  22.     d;
  23.     d;
  24.  
  25.     if (n == 0)
  26.     return(0);
  27.  
  28.     while ((c = *s) == *d) {
  29.     if (c == 0 || --n == 0)
  30.         return(0);
  31.     ++s;
  32.     ++d;
  33.     }
  34.     if ((ubyte)c < (ubyte)*d)
  35.     return(-1);
  36.     return(1);
  37. }
  38.  
  39.